home *** CD-ROM | disk | FTP | other *** search
/ Hottest 6 / Hottest 6 (1996)(PDSoft)[!].iso / software / fredfish / 1059.lha / Programs / MathPlot / Macros / testrx.rexx < prev    next >
OS/2 REXX Batch file  |  1994-12-15  |  374b  |  21 lines

  1. /* ARexx Skript zum Testen des ARexxBox-Tests :-) */
  2.  
  3. address 'MPlot_ARexx'
  4. options results
  5.  
  6. /* welche Befehle gibt's denn so? */
  7. help stem a.
  8. /*
  9. This would give a simple list of all commands 
  10.  
  11. do i=0 to a.commandlist.count-1
  12.  say a.commandlist.i
  13. end
  14. */
  15.  
  16. do i=0 to a.commandlist.count-1
  17.  help a.commandlist.i var hilfe
  18.  say hilfe
  19.  drop hilfe /* This drop is needed ! */
  20. end
  21.